Note
Click here to download the full example code
DCGAN Tutorial¶
Author: Nathan Inkawhich
Introduction¶
This tutorial will give an introduction to DCGANs through an example. We will train a generative adversarial network (GAN) to generate new celebrities after showing it pictures of many real celebrities. Most of the code here is from the dcgan implementation in pytorch/examples, and this document will give a thorough explanation of the implementation and shed light on how and why this model works. But don’t worry, no prior knowledge of GANs is required, but it may require a first-timer to spend some time reasoning about what is actually happening under the hood. Also, for the sake of time it will help to have a GPU, or two. Lets start from the beginning.
Generative Adversarial Networks¶
What is a GAN?¶
GANs are a framework for teaching a DL model to capture the training data’s distribution so we can generate new data from that same distribution. GANs were invented by Ian Goodfellow in 2014 and first described in the paper Generative Adversarial Nets. They are made of two distinct models, a generator and a discriminator. The job of the generator is to spawn ‘fake’ images that look like the training images. The job of the discriminator is to look at an image and output whether or not it is a real training image or a fake image from the generator. During training, the generator is constantly trying to outsmart the discriminator by generating better and better fakes, while the discriminator is working to become a better detective and correctly classify the real and fake images. The equilibrium of this game is when the generator is generating perfect fakes that look as if they came directly from the training data, and the discriminator is left to always guess at 50% confidence that the generator output is real or fake.
Now, lets define some notation to be used throughout tutorial starting with the discriminator. Let \(x\) be data representing an image. \(D(x)\) is the discriminator network which outputs the (scalar) probability that \(x\) came from training data rather than the generator. Here, since we are dealing with images, the input to \(D(x)\) is an image of CHW size 3x64x64. Intuitively, \(D(x)\) should be HIGH when \(x\) comes from training data and LOW when \(x\) comes from the generator. \(D(x)\) can also be thought of as a traditional binary classifier.
For the generator’s notation, let \(z\) be a latent space vector sampled from a standard normal distribution. \(G(z)\) represents the generator function which maps the latent vector \(z\) to data-space. The goal of \(G\) is to estimate the distribution that the training data comes from (\(p_{data}\)) so it can generate fake samples from that estimated distribution (\(p_g\)).
So, \(D(G(z))\) is the probability (scalar) that the output of the generator \(G\) is a real image. As described in Goodfellow’s paper, \(D\) and \(G\) play a minimax game in which \(D\) tries to maximize the probability it correctly classifies reals and fakes (\(logD(x)\)), and \(G\) tries to minimize the probability that \(D\) will predict its outputs are fake (\(log(1-D(G(z)))\)). From the paper, the GAN loss function is
In theory, the solution to this minimax game is where \(p_g = p_{data}\), and the discriminator guesses randomly if the inputs are real or fake. However, the convergence theory of GANs is still being actively researched and in reality models do not always train to this point.
What is a DCGAN?¶
A DCGAN is a direct extension of the GAN described above, except that it explicitly uses convolutional and convolutional-transpose layers in the discriminator and generator, respectively. It was first described by Radford et. al. in the paper Unsupervised Representation Learning With Deep Convolutional Generative Adversarial Networks. The discriminator is made up of strided convolution layers, batch norm layers, and LeakyReLU activations. The input is a 3x64x64 input image and the output is a scalar probability that the input is from the real data distribution. The generator is comprised of convolutional-transpose layers, batch norm layers, and ReLU activations. The input is a latent vector, \(z\), that is drawn from a standard normal distribution and the output is a 3x64x64 RGB image. The strided conv-transpose layers allow the latent vector to be transformed into a volume with the same shape as an image. In the paper, the authors also give some tips about how to setup the optimizers, how to calculate the loss functions, and how to initialize the model weights, all of which will be explained in the coming sections.
from __future__ import print_function
#%matplotlib inline
import argparse
import os
import random
import torch
import torch.nn as nn
import torch.nn.parallel
import torch.backends.cudnn as cudnn
import torch.optim as optim
import torch.utils.data
import torchvision.datasets as dset
import torchvision.transforms as transforms
import torchvision.utils as vutils
import numpy as np
import matplotlib.pyplot as plt
import matplotlib.animation as animation
from IPython.display import HTML
# Set random seed for reproducibility
manualSeed = 999
#manualSeed = random.randint(1, 10000) # use if you want new results
print("Random Seed: ", manualSeed)
random.seed(manualSeed)
torch.manual_seed(manualSeed)
Random Seed: 999
<torch._C.Generator object at 0x7f7bd6e74bf0>
Inputs¶
Let’s define some inputs for the run:
dataroot - the path to the root of the dataset folder. We will talk more about the dataset in the next section
workers - the number of worker threads for loading the data with the DataLoader
batch_size - the batch size used in training. The DCGAN paper uses a batch size of 128
image_size - the spatial size of the images used for training. This implementation defaults to 64x64. If another size is desired, the structures of D and G must be changed. See here for more details
nc - number of color channels in the input images. For color images this is 3
nz - length of latent vector
ngf - relates to the depth of feature maps carried through the generator
ndf - sets the depth of feature maps propagated through the discriminator
num_epochs - number of training epochs to run. Training for longer will probably lead to better results but will also take much longer
lr - learning rate for training. As described in the DCGAN paper, this number should be 0.0002
beta1 - beta1 hyperparameter for Adam optimizers. As described in paper, this number should be 0.5
ngpu - number of GPUs available. If this is 0, code will run in CPU mode. If this number is greater than 0 it will run on that number of GPUs
# Root directory for dataset
dataroot = "data/celeba"
# Number of workers for dataloader
workers = 2
# Batch size during training
batch_size = 128
# Spatial size of training images. All images will be resized to this
# size using a transformer.
image_size = 64
# Number of channels in the training images. For color images this is 3
nc = 3
# Size of z latent vector (i.e. size of generator input)
nz = 100
# Size of feature maps in generator
ngf = 64
# Size of feature maps in discriminator
ndf = 64
# Number of training epochs
num_epochs = 5
# Learning rate for optimizers
lr = 0.0002
# Beta1 hyperparam for Adam optimizers
beta1 = 0.5
# Number of GPUs available. Use 0 for CPU mode.
ngpu = 1
Data¶
In this tutorial we will use the Celeb-A Faces dataset which can be downloaded at the linked site, or in Google Drive. The dataset will download as a file named img_align_celeba.zip. Once downloaded, create a directory named celeba and extract the zip file into that directory. Then, set the dataroot input for this notebook to the celeba directory you just created. The resulting directory structure should be:
/path/to/celeba
-> img_align_celeba
-> 188242.jpg
-> 173822.jpg
-> 284702.jpg
-> 537394.jpg
...
This is an important step because we will be using the ImageFolder dataset class, which requires there to be subdirectories in the dataset’s root folder. Now, we can create the dataset, create the dataloader, set the device to run on, and finally visualize some of the training data.
# We can use an image folder dataset the way we have it setup.
# Create the dataset
dataset = dset.ImageFolder(root=dataroot,
transform=transforms.Compose([
transforms.Resize(image_size),
transforms.CenterCrop(image_size),
transforms.ToTensor(),
transforms.Normalize((0.5, 0.5, 0.5), (0.5, 0.5, 0.5)),
]))
# Create the dataloader
dataloader = torch.utils.data.DataLoader(dataset, batch_size=batch_size,
shuffle=True, num_workers=workers)
# Decide which device we want to run on
device = torch.device("cuda:0" if (torch.cuda.is_available() and ngpu > 0) else "cpu")
# Plot some training images
real_batch = next(iter(dataloader))
plt.figure(figsize=(8,8))
plt.axis("off")
plt.title("Training Images")
plt.imshow(np.transpose(vutils.make_grid(real_batch[0].to(device)[:64], padding=2, normalize=True).cpu(),(1,2,0)))

<matplotlib.image.AxesImage object at 0x7f7ba0525d20>
Implementation¶
With our input parameters set and the dataset prepared, we can now get into the implementation. We will start with the weight initialization strategy, then talk about the generator, discriminator, loss functions, and training loop in detail.
Weight Initialization¶
From the DCGAN paper, the authors specify that all model weights shall
be randomly initialized from a Normal distribution with mean=0,
stdev=0.02. The weights_init function takes an initialized model as
input and reinitializes all convolutional, convolutional-transpose, and
batch normalization layers to meet this criteria. This function is
applied to the models immediately after initialization.
# custom weights initialization called on netG and netD
def weights_init(m):
classname = m.__class__.__name__
if classname.find('Conv') != -1:
nn.init.normal_(m.weight.data, 0.0, 0.02)
elif classname.find('BatchNorm') != -1:
nn.init.normal_(m.weight.data, 1.0, 0.02)
nn.init.constant_(m.bias.data, 0)
Generator¶
The generator, \(G\), is designed to map the latent space vector (\(z\)) to data-space. Since our data are images, converting \(z\) to data-space means ultimately creating a RGB image with the same size as the training images (i.e. 3x64x64). In practice, this is accomplished through a series of strided two dimensional convolutional transpose layers, each paired with a 2d batch norm layer and a relu activation. The output of the generator is fed through a tanh function to return it to the input data range of \([-1,1]\). It is worth noting the existence of the batch norm functions after the conv-transpose layers, as this is a critical contribution of the DCGAN paper. These layers help with the flow of gradients during training. An image of the generator from the DCGAN paper is shown below.
Notice, how the inputs we set in the input section (nz, ngf, and nc) influence the generator architecture in code. nz is the length of the z input vector, ngf relates to the size of the feature maps that are propagated through the generator, and nc is the number of channels in the output image (set to 3 for RGB images). Below is the code for the generator.
# Generator Code
class Generator(nn.Module):
def __init__(self, ngpu):
super(Generator, self).__init__()
self.ngpu = ngpu
self.main = nn.Sequential(
# input is Z, going into a convolution
nn.ConvTranspose2d( nz, ngf * 8, 4, 1, 0, bias=False),
nn.BatchNorm2d(ngf * 8),
nn.ReLU(True),
# state size. (ngf*8) x 4 x 4
nn.ConvTranspose2d(ngf * 8, ngf * 4, 4, 2, 1, bias=False),
nn.BatchNorm2d(ngf * 4),
nn.ReLU(True),
# state size. (ngf*4) x 8 x 8
nn.ConvTranspose2d( ngf * 4, ngf * 2, 4, 2, 1, bias=False),
nn.BatchNorm2d(ngf * 2),
nn.ReLU(True),
# state size. (ngf*2) x 16 x 16
nn.ConvTranspose2d( ngf * 2, ngf, 4, 2, 1, bias=False),
nn.BatchNorm2d(ngf),
nn.ReLU(True),
# state size. (ngf) x 32 x 32
nn.ConvTranspose2d( ngf, nc, 4, 2, 1, bias=False),
nn.Tanh()
# state size. (nc) x 64 x 64
)
def forward(self, input):
return self.main(input)
Now, we can instantiate the generator and apply the weights_init
function. Check out the printed model to see how the generator object is
structured.
# Create the generator
netG = Generator(ngpu).to(device)
# Handle multi-gpu if desired
if (device.type == 'cuda') and (ngpu > 1):
netG = nn.DataParallel(netG, list(range(ngpu)))
# Apply the weights_init function to randomly initialize all weights
# to mean=0, stdev=0.02.
netG.apply(weights_init)
# Print the model
print(netG)
Generator(
(main): Sequential(
(0): ConvTranspose2d(100, 512, kernel_size=(4, 4), stride=(1, 1), bias=False)
(1): BatchNorm2d(512, eps=1e-05, momentum=0.1, affine=True, track_running_stats=True)
(2): ReLU(inplace=True)
(3): ConvTranspose2d(512, 256, kernel_size=(4, 4), stride=(2, 2), padding=(1, 1), bias=False)
(4): BatchNorm2d(256, eps=1e-05, momentum=0.1, affine=True, track_running_stats=True)
(5): ReLU(inplace=True)
(6): ConvTranspose2d(256, 128, kernel_size=(4, 4), stride=(2, 2), padding=(1, 1), bias=False)
(7): BatchNorm2d(128, eps=1e-05, momentum=0.1, affine=True, track_running_stats=True)
(8): ReLU(inplace=True)
(9): ConvTranspose2d(128, 64, kernel_size=(4, 4), stride=(2, 2), padding=(1, 1), bias=False)
(10): BatchNorm2d(64, eps=1e-05, momentum=0.1, affine=True, track_running_stats=True)
(11): ReLU(inplace=True)
(12): ConvTranspose2d(64, 3, kernel_size=(4, 4), stride=(2, 2), padding=(1, 1), bias=False)
(13): Tanh()
)
)
Discriminator¶
As mentioned, the discriminator, \(D\), is a binary classification network that takes an image as input and outputs a scalar probability that the input image is real (as opposed to fake). Here, \(D\) takes a 3x64x64 input image, processes it through a series of Conv2d, BatchNorm2d, and LeakyReLU layers, and outputs the final probability through a Sigmoid activation function. This architecture can be extended with more layers if necessary for the problem, but there is significance to the use of the strided convolution, BatchNorm, and LeakyReLUs. The DCGAN paper mentions it is a good practice to use strided convolution rather than pooling to downsample because it lets the network learn its own pooling function. Also batch norm and leaky relu functions promote healthy gradient flow which is critical for the learning process of both \(G\) and \(D\).
Discriminator Code
class Discriminator(nn.Module):
def __init__(self, ngpu):
super(Discriminator, self).__init__()
self.ngpu = ngpu
self.main = nn.Sequential(
# input is (nc) x 64 x 64
nn.Conv2d(nc, ndf, 4, 2, 1, bias=False),
nn.LeakyReLU(0.2, inplace=True),
# state size. (ndf) x 32 x 32
nn.Conv2d(ndf, ndf * 2, 4, 2, 1, bias=False),
nn.BatchNorm2d(ndf * 2),
nn.LeakyReLU(0.2, inplace=True),
# state size. (ndf*2) x 16 x 16
nn.Conv2d(ndf * 2, ndf * 4, 4, 2, 1, bias=False),
nn.BatchNorm2d(ndf * 4),
nn.LeakyReLU(0.2, inplace=True),
# state size. (ndf*4) x 8 x 8
nn.Conv2d(ndf * 4, ndf * 8, 4, 2, 1, bias=False),
nn.BatchNorm2d(ndf * 8),
nn.LeakyReLU(0.2, inplace=True),
# state size. (ndf*8) x 4 x 4
nn.Conv2d(ndf * 8, 1, 4, 1, 0, bias=False),
nn.Sigmoid()
)
def forward(self, input):
return self.main(input)
Now, as with the generator, we can create the discriminator, apply the
weights_init function, and print the model’s structure.
# Create the Discriminator
netD = Discriminator(ngpu).to(device)
# Handle multi-gpu if desired
if (device.type == 'cuda') and (ngpu > 1):
netD = nn.DataParallel(netD, list(range(ngpu)))
# Apply the weights_init function to randomly initialize all weights
# to mean=0, stdev=0.2.
netD.apply(weights_init)
# Print the model
print(netD)
Discriminator(
(main): Sequential(
(0): Conv2d(3, 64, kernel_size=(4, 4), stride=(2, 2), padding=(1, 1), bias=False)
(1): LeakyReLU(negative_slope=0.2, inplace=True)
(2): Conv2d(64, 128, kernel_size=(4, 4), stride=(2, 2), padding=(1, 1), bias=False)
(3): BatchNorm2d(128, eps=1e-05, momentum=0.1, affine=True, track_running_stats=True)
(4): LeakyReLU(negative_slope=0.2, inplace=True)
(5): Conv2d(128, 256, kernel_size=(4, 4), stride=(2, 2), padding=(1, 1), bias=False)
(6): BatchNorm2d(256, eps=1e-05, momentum=0.1, affine=True, track_running_stats=True)
(7): LeakyReLU(negative_slope=0.2, inplace=True)
(8): Conv2d(256, 512, kernel_size=(4, 4), stride=(2, 2), padding=(1, 1), bias=False)
(9): BatchNorm2d(512, eps=1e-05, momentum=0.1, affine=True, track_running_stats=True)
(10): LeakyReLU(negative_slope=0.2, inplace=True)
(11): Conv2d(512, 1, kernel_size=(4, 4), stride=(1, 1), bias=False)
(12): Sigmoid()
)
)
Loss Functions and Optimizers¶
With \(D\) and \(G\) setup, we can specify how they learn through the loss functions and optimizers. We will use the Binary Cross Entropy loss (BCELoss) function which is defined in PyTorch as:
Notice how this function provides the calculation of both log components in the objective function (i.e. \(log(D(x))\) and \(log(1-D(G(z)))\)). We can specify what part of the BCE equation to use with the \(y\) input. This is accomplished in the training loop which is coming up soon, but it is important to understand how we can choose which component we wish to calculate just by changing \(y\) (i.e. GT labels).
Next, we define our real label as 1 and the fake label as 0. These labels will be used when calculating the losses of \(D\) and \(G\), and this is also the convention used in the original GAN paper. Finally, we set up two separate optimizers, one for \(D\) and one for \(G\). As specified in the DCGAN paper, both are Adam optimizers with learning rate 0.0002 and Beta1 = 0.5. For keeping track of the generator’s learning progression, we will generate a fixed batch of latent vectors that are drawn from a Gaussian distribution (i.e. fixed_noise) . In the training loop, we will periodically input this fixed_noise into \(G\), and over the iterations we will see images form out of the noise.
# Initialize BCELoss function
criterion = nn.BCELoss()
# Create batch of latent vectors that we will use to visualize
# the progression of the generator
fixed_noise = torch.randn(64, nz, 1, 1, device=device)
# Establish convention for real and fake labels during training
real_label = 1.
fake_label = 0.
# Setup Adam optimizers for both G and D
optimizerD = optim.Adam(netD.parameters(), lr=lr, betas=(beta1, 0.999))
optimizerG = optim.Adam(netG.parameters(), lr=lr, betas=(beta1, 0.999))
Training¶
Finally, now that we have all of the parts of the GAN framework defined, we can train it. Be mindful that training GANs is somewhat of an art form, as incorrect hyperparameter settings lead to mode collapse with little explanation of what went wrong. Here, we will closely follow Algorithm 1 from Goodfellow’s paper, while abiding by some of the best practices shown in ganhacks. Namely, we will “construct different mini-batches for real and fake” images, and also adjust G’s objective function to maximize \(logD(G(z))\). Training is split up into two main parts. Part 1 updates the Discriminator and Part 2 updates the Generator.
Part 1 - Train the Discriminator
Recall, the goal of training the discriminator is to maximize the probability of correctly classifying a given input as real or fake. In terms of Goodfellow, we wish to “update the discriminator by ascending its stochastic gradient”. Practically, we want to maximize \(log(D(x)) + log(1-D(G(z)))\). Due to the separate mini-batch suggestion from ganhacks, we will calculate this in two steps. First, we will construct a batch of real samples from the training set, forward pass through \(D\), calculate the loss (\(log(D(x))\)), then calculate the gradients in a backward pass. Secondly, we will construct a batch of fake samples with the current generator, forward pass this batch through \(D\), calculate the loss (\(log(1-D(G(z)))\)), and accumulate the gradients with a backward pass. Now, with the gradients accumulated from both the all-real and all-fake batches, we call a step of the Discriminator’s optimizer.
Part 2 - Train the Generator
As stated in the original paper, we want to train the Generator by minimizing \(log(1-D(G(z)))\) in an effort to generate better fakes. As mentioned, this was shown by Goodfellow to not provide sufficient gradients, especially early in the learning process. As a fix, we instead wish to maximize \(log(D(G(z)))\). In the code we accomplish this by: classifying the Generator output from Part 1 with the Discriminator, computing G’s loss using real labels as GT, computing G’s gradients in a backward pass, and finally updating G’s parameters with an optimizer step. It may seem counter-intuitive to use the real labels as GT labels for the loss function, but this allows us to use the \(log(x)\) part of the BCELoss (rather than the \(log(1-x)\) part) which is exactly what we want.
Finally, we will do some statistic reporting and at the end of each epoch we will push our fixed_noise batch through the generator to visually track the progress of G’s training. The training statistics reported are:
Loss_D - discriminator loss calculated as the sum of losses for the all real and all fake batches (\(log(D(x)) + log(1 - D(G(z)))\)).
Loss_G - generator loss calculated as \(log(D(G(z)))\)
D(x) - the average output (across the batch) of the discriminator for the all real batch. This should start close to 1 then theoretically converge to 0.5 when G gets better. Think about why this is.
D(G(z)) - average discriminator outputs for the all fake batch. The first number is before D is updated and the second number is after D is updated. These numbers should start near 0 and converge to 0.5 as G gets better. Think about why this is.
Note: This step might take a while, depending on how many epochs you run and if you removed some data from the dataset.
# Training Loop
# Lists to keep track of progress
img_list = []
G_losses = []
D_losses = []
iters = 0
print("Starting Training Loop...")
# For each epoch
for epoch in range(num_epochs):
# For each batch in the dataloader
for i, data in enumerate(dataloader, 0):
############################
# (1) Update D network: maximize log(D(x)) + log(1 - D(G(z)))
###########################
## Train with all-real batch
netD.zero_grad()
# Format batch
real_cpu = data[0].to(device)
b_size = real_cpu.size(0)
label = torch.full((b_size,), real_label, dtype=torch.float, device=device)
# Forward pass real batch through D
output = netD(real_cpu).view(-1)
# Calculate loss on all-real batch
errD_real = criterion(output, label)
# Calculate gradients for D in backward pass
errD_real.backward()
D_x = output.mean().item()
## Train with all-fake batch
# Generate batch of latent vectors
noise = torch.randn(b_size, nz, 1, 1, device=device)
# Generate fake image batch with G
fake = netG(noise)
label.fill_(fake_label)
# Classify all fake batch with D
output = netD(fake.detach()).view(-1)
# Calculate D's loss on the all-fake batch
errD_fake = criterion(output, label)
# Calculate the gradients for this batch, accumulated (summed) with previous gradients
errD_fake.backward()
D_G_z1 = output.mean().item()
# Compute error of D as sum over the fake and the real batches
errD = errD_real + errD_fake
# Update D
optimizerD.step()
############################
# (2) Update G network: maximize log(D(G(z)))
###########################
netG.zero_grad()
label.fill_(real_label) # fake labels are real for generator cost
# Since we just updated D, perform another forward pass of all-fake batch through D
output = netD(fake).view(-1)
# Calculate G's loss based on this output
errG = criterion(output, label)
# Calculate gradients for G
errG.backward()
D_G_z2 = output.mean().item()
# Update G
optimizerG.step()
# Output training stats
if i % 50 == 0:
print('[%d/%d][%d/%d]\tLoss_D: %.4f\tLoss_G: %.4f\tD(x): %.4f\tD(G(z)): %.4f / %.4f'
% (epoch, num_epochs, i, len(dataloader),
errD.item(), errG.item(), D_x, D_G_z1, D_G_z2))
# Save Losses for plotting later
G_losses.append(errG.item())
D_losses.append(errD.item())
# Check how the generator is doing by saving G's output on fixed_noise
if (iters % 500 == 0) or ((epoch == num_epochs-1) and (i == len(dataloader)-1)):
with torch.no_grad():
fake = netG(fixed_noise).detach().cpu()
img_list.append(vutils.make_grid(fake, padding=2, normalize=True))
iters += 1
Starting Training Loop...
[0/5][0/1583] Loss_D: 1.6264 Loss_G: 5.5240 D(x): 0.5733 D(G(z)): 0.5501 / 0.0065
[0/5][50/1583] Loss_D: 0.0944 Loss_G: 16.4940 D(x): 0.9438 D(G(z)): 0.0000 / 0.0000
[0/5][100/1583] Loss_D: 0.1396 Loss_G: 7.5898 D(x): 0.9148 D(G(z)): 0.0159 / 0.0010
[0/5][150/1583] Loss_D: 0.3856 Loss_G: 3.8018 D(x): 0.7910 D(G(z)): 0.0684 / 0.0384
[0/5][200/1583] Loss_D: 1.0952 Loss_G: 8.0364 D(x): 0.9577 D(G(z)): 0.5495 / 0.0010
[0/5][250/1583] Loss_D: 0.6077 Loss_G: 4.8586 D(x): 0.8665 D(G(z)): 0.3036 / 0.0157
[0/5][300/1583] Loss_D: 0.6278 Loss_G: 3.3998 D(x): 0.6713 D(G(z)): 0.0935 / 0.0588
[0/5][350/1583] Loss_D: 1.5168 Loss_G: 3.2259 D(x): 0.3630 D(G(z)): 0.0030 / 0.0692
[0/5][400/1583] Loss_D: 0.6937 Loss_G: 4.3388 D(x): 0.7668 D(G(z)): 0.2598 / 0.0252
[0/5][450/1583] Loss_D: 0.6736 Loss_G: 6.3024 D(x): 0.8506 D(G(z)): 0.2998 / 0.0032
[0/5][500/1583] Loss_D: 0.3041 Loss_G: 2.7408 D(x): 0.8788 D(G(z)): 0.1223 / 0.1167
[0/5][550/1583] Loss_D: 0.4539 Loss_G: 4.3840 D(x): 0.7955 D(G(z)): 0.0995 / 0.0213
[0/5][600/1583] Loss_D: 0.2238 Loss_G: 6.3787 D(x): 0.9060 D(G(z)): 0.0853 / 0.0079
[0/5][650/1583] Loss_D: 0.9964 Loss_G: 8.3858 D(x): 0.8993 D(G(z)): 0.4972 / 0.0007
[0/5][700/1583] Loss_D: 0.3198 Loss_G: 4.5683 D(x): 0.8656 D(G(z)): 0.1101 / 0.0213
[0/5][750/1583] Loss_D: 0.8808 Loss_G: 6.3298 D(x): 0.5726 D(G(z)): 0.0066 / 0.0057
[0/5][800/1583] Loss_D: 0.3042 Loss_G: 6.0773 D(x): 0.9316 D(G(z)): 0.1751 / 0.0047
[0/5][850/1583] Loss_D: 0.2556 Loss_G: 4.3452 D(x): 0.8877 D(G(z)): 0.1011 / 0.0218
[0/5][900/1583] Loss_D: 0.8648 Loss_G: 4.8192 D(x): 0.7397 D(G(z)): 0.3037 / 0.0251
[0/5][950/1583] Loss_D: 0.4618 Loss_G: 4.6990 D(x): 0.8946 D(G(z)): 0.2394 / 0.0207
[0/5][1000/1583] Loss_D: 0.2137 Loss_G: 4.8845 D(x): 0.8939 D(G(z)): 0.0707 / 0.0187
[0/5][1050/1583] Loss_D: 0.2600 Loss_G: 3.4448 D(x): 0.8748 D(G(z)): 0.0848 / 0.0595
[0/5][1100/1583] Loss_D: 0.5737 Loss_G: 3.9694 D(x): 0.7555 D(G(z)): 0.1568 / 0.0355
[0/5][1150/1583] Loss_D: 1.9262 Loss_G: 10.4492 D(x): 0.9737 D(G(z)): 0.7679 / 0.0002
[0/5][1200/1583] Loss_D: 0.4866 Loss_G: 4.9497 D(x): 0.9314 D(G(z)): 0.2870 / 0.0172
[0/5][1250/1583] Loss_D: 0.6838 Loss_G: 4.4556 D(x): 0.7674 D(G(z)): 0.2324 / 0.0231
[0/5][1300/1583] Loss_D: 0.5475 Loss_G: 6.8726 D(x): 0.9538 D(G(z)): 0.3511 / 0.0020
[0/5][1350/1583] Loss_D: 0.5119 Loss_G: 3.0297 D(x): 0.7229 D(G(z)): 0.1110 / 0.0731
[0/5][1400/1583] Loss_D: 0.5034 Loss_G: 3.0418 D(x): 0.7392 D(G(z)): 0.1069 / 0.0804
[0/5][1450/1583] Loss_D: 0.7616 Loss_G: 2.3289 D(x): 0.6017 D(G(z)): 0.0564 / 0.1495
[0/5][1500/1583] Loss_D: 0.5522 Loss_G: 4.6505 D(x): 0.8167 D(G(z)): 0.2346 / 0.0174
[0/5][1550/1583] Loss_D: 0.8054 Loss_G: 6.7142 D(x): 0.9123 D(G(z)): 0.4547 / 0.0030
[1/5][0/1583] Loss_D: 0.2786 Loss_G: 3.8827 D(x): 0.8779 D(G(z)): 0.1142 / 0.0336
[1/5][50/1583] Loss_D: 0.5228 Loss_G: 3.6232 D(x): 0.7672 D(G(z)): 0.1689 / 0.0451
[1/5][100/1583] Loss_D: 0.5221 Loss_G: 3.0287 D(x): 0.7161 D(G(z)): 0.0718 / 0.0952
[1/5][150/1583] Loss_D: 0.4022 Loss_G: 4.3404 D(x): 0.8234 D(G(z)): 0.1425 / 0.0245
[1/5][200/1583] Loss_D: 0.4003 Loss_G: 3.5756 D(x): 0.8315 D(G(z)): 0.1586 / 0.0540
[1/5][250/1583] Loss_D: 0.5931 Loss_G: 2.8233 D(x): 0.6943 D(G(z)): 0.1076 / 0.0956
[1/5][300/1583] Loss_D: 0.9946 Loss_G: 6.5379 D(x): 0.9606 D(G(z)): 0.5636 / 0.0031
[1/5][350/1583] Loss_D: 0.4118 Loss_G: 5.0305 D(x): 0.9375 D(G(z)): 0.2634 / 0.0105
[1/5][400/1583] Loss_D: 0.5910 Loss_G: 4.4110 D(x): 0.8599 D(G(z)): 0.3004 / 0.0231
[1/5][450/1583] Loss_D: 0.4364 Loss_G: 3.5181 D(x): 0.7746 D(G(z)): 0.1015 / 0.0537
[1/5][500/1583] Loss_D: 0.6521 Loss_G: 4.9092 D(x): 0.9124 D(G(z)): 0.3678 / 0.0142
[1/5][550/1583] Loss_D: 0.4425 Loss_G: 5.3953 D(x): 0.9374 D(G(z)): 0.2610 / 0.0075
[1/5][600/1583] Loss_D: 0.2854 Loss_G: 2.8526 D(x): 0.8469 D(G(z)): 0.0861 / 0.0808
[1/5][650/1583] Loss_D: 0.3455 Loss_G: 3.5222 D(x): 0.8519 D(G(z)): 0.1392 / 0.0467
[1/5][700/1583] Loss_D: 0.4611 Loss_G: 2.0244 D(x): 0.7394 D(G(z)): 0.0978 / 0.1770
[1/5][750/1583] Loss_D: 1.1669 Loss_G: 1.7743 D(x): 0.4487 D(G(z)): 0.0412 / 0.2406
[1/5][800/1583] Loss_D: 0.4237 Loss_G: 4.7567 D(x): 0.9219 D(G(z)): 0.2602 / 0.0127
[1/5][850/1583] Loss_D: 0.7793 Loss_G: 2.4429 D(x): 0.5777 D(G(z)): 0.0163 / 0.1370
[1/5][900/1583] Loss_D: 0.5719 Loss_G: 3.9111 D(x): 0.8212 D(G(z)): 0.2697 / 0.0279
[1/5][950/1583] Loss_D: 0.4781 Loss_G: 4.2851 D(x): 0.8377 D(G(z)): 0.2195 / 0.0217
[1/5][1000/1583] Loss_D: 0.5227 Loss_G: 2.4195 D(x): 0.7095 D(G(z)): 0.0903 / 0.1261
[1/5][1050/1583] Loss_D: 0.9081 Loss_G: 5.6363 D(x): 0.9353 D(G(z)): 0.4942 / 0.0073
[1/5][1100/1583] Loss_D: 1.5048 Loss_G: 2.1995 D(x): 0.3152 D(G(z)): 0.0159 / 0.2447
[1/5][1150/1583] Loss_D: 0.4525 Loss_G: 2.0710 D(x): 0.7480 D(G(z)): 0.0998 / 0.1631
[1/5][1200/1583] Loss_D: 0.3636 Loss_G: 3.0069 D(x): 0.8309 D(G(z)): 0.1297 / 0.0668
[1/5][1250/1583] Loss_D: 0.4891 Loss_G: 2.2135 D(x): 0.6998 D(G(z)): 0.0712 / 0.1574
[1/5][1300/1583] Loss_D: 0.2806 Loss_G: 3.0179 D(x): 0.9056 D(G(z)): 0.1466 / 0.0755
[1/5][1350/1583] Loss_D: 0.5732 Loss_G: 2.7689 D(x): 0.7336 D(G(z)): 0.1621 / 0.0931
[1/5][1400/1583] Loss_D: 0.8511 Loss_G: 4.9457 D(x): 0.8875 D(G(z)): 0.4601 / 0.0123
[1/5][1450/1583] Loss_D: 0.5397 Loss_G: 3.3025 D(x): 0.8162 D(G(z)): 0.2318 / 0.0533
[1/5][1500/1583] Loss_D: 0.8747 Loss_G: 4.6291 D(x): 0.9353 D(G(z)): 0.4916 / 0.0153
[1/5][1550/1583] Loss_D: 0.4652 Loss_G: 3.2922 D(x): 0.8338 D(G(z)): 0.2204 / 0.0527
[2/5][0/1583] Loss_D: 0.2962 Loss_G: 3.3835 D(x): 0.8903 D(G(z)): 0.1498 / 0.0476
[2/5][50/1583] Loss_D: 1.0837 Loss_G: 4.2912 D(x): 0.9454 D(G(z)): 0.5744 / 0.0223
[2/5][100/1583] Loss_D: 0.7565 Loss_G: 3.9121 D(x): 0.9075 D(G(z)): 0.4319 / 0.0298
[2/5][150/1583] Loss_D: 0.4355 Loss_G: 3.1746 D(x): 0.8939 D(G(z)): 0.2538 / 0.0579
[2/5][200/1583] Loss_D: 0.5931 Loss_G: 2.2959 D(x): 0.7435 D(G(z)): 0.2067 / 0.1316
[2/5][250/1583] Loss_D: 1.4171 Loss_G: 6.2943 D(x): 0.9420 D(G(z)): 0.6776 / 0.0033
[2/5][300/1583] Loss_D: 0.5612 Loss_G: 2.3492 D(x): 0.7099 D(G(z)): 0.1561 / 0.1285
[2/5][350/1583] Loss_D: 0.5469 Loss_G: 1.8515 D(x): 0.6886 D(G(z)): 0.1019 / 0.2089
[2/5][400/1583] Loss_D: 0.3978 Loss_G: 2.9113 D(x): 0.8131 D(G(z)): 0.1422 / 0.0769
[2/5][450/1583] Loss_D: 1.7236 Loss_G: 6.8459 D(x): 0.9791 D(G(z)): 0.7595 / 0.0021
[2/5][500/1583] Loss_D: 0.3957 Loss_G: 2.8703 D(x): 0.8154 D(G(z)): 0.1481 / 0.0793
[2/5][550/1583] Loss_D: 1.0221 Loss_G: 1.5040 D(x): 0.4580 D(G(z)): 0.0338 / 0.2877
[2/5][600/1583] Loss_D: 0.4836 Loss_G: 2.5232 D(x): 0.7527 D(G(z)): 0.1413 / 0.1035
[2/5][650/1583] Loss_D: 0.4412 Loss_G: 2.3777 D(x): 0.8088 D(G(z)): 0.1726 / 0.1224
[2/5][700/1583] Loss_D: 0.8810 Loss_G: 1.5197 D(x): 0.4951 D(G(z)): 0.0428 / 0.2746
[2/5][750/1583] Loss_D: 0.7593 Loss_G: 1.7340 D(x): 0.6720 D(G(z)): 0.2454 / 0.2169
[2/5][800/1583] Loss_D: 0.6284 Loss_G: 2.3692 D(x): 0.7522 D(G(z)): 0.2430 / 0.1216
[2/5][850/1583] Loss_D: 0.5241 Loss_G: 2.7654 D(x): 0.8313 D(G(z)): 0.2562 / 0.0820
[2/5][900/1583] Loss_D: 1.0160 Loss_G: 3.4419 D(x): 0.8099 D(G(z)): 0.4893 / 0.0463
[2/5][950/1583] Loss_D: 0.6503 Loss_G: 3.0456 D(x): 0.7638 D(G(z)): 0.2565 / 0.0680
[2/5][1000/1583] Loss_D: 1.0720 Loss_G: 0.9946 D(x): 0.4276 D(G(z)): 0.0312 / 0.4246
[2/5][1050/1583] Loss_D: 0.7593 Loss_G: 1.6016 D(x): 0.5827 D(G(z)): 0.0780 / 0.2688
[2/5][1100/1583] Loss_D: 0.4733 Loss_G: 3.5646 D(x): 0.9347 D(G(z)): 0.2997 / 0.0410
[2/5][1150/1583] Loss_D: 1.3651 Loss_G: 0.7855 D(x): 0.3576 D(G(z)): 0.0482 / 0.5065
[2/5][1200/1583] Loss_D: 0.5265 Loss_G: 2.3571 D(x): 0.7444 D(G(z)): 0.1703 / 0.1247
[2/5][1250/1583] Loss_D: 0.4417 Loss_G: 1.9219 D(x): 0.7722 D(G(z)): 0.1403 / 0.1831
[2/5][1300/1583] Loss_D: 0.5676 Loss_G: 3.3782 D(x): 0.8396 D(G(z)): 0.2869 / 0.0466
[2/5][1350/1583] Loss_D: 0.6138 Loss_G: 1.9896 D(x): 0.7272 D(G(z)): 0.2099 / 0.1722
[2/5][1400/1583] Loss_D: 0.9216 Loss_G: 4.8634 D(x): 0.9347 D(G(z)): 0.5172 / 0.0115
[2/5][1450/1583] Loss_D: 0.5344 Loss_G: 3.0195 D(x): 0.8177 D(G(z)): 0.2467 / 0.0657
[2/5][1500/1583] Loss_D: 0.5314 Loss_G: 2.9774 D(x): 0.8771 D(G(z)): 0.2989 / 0.0664
[2/5][1550/1583] Loss_D: 0.6529 Loss_G: 1.7393 D(x): 0.6163 D(G(z)): 0.0953 / 0.2241
[3/5][0/1583] Loss_D: 1.2086 Loss_G: 0.6859 D(x): 0.3619 D(G(z)): 0.0300 / 0.5560
[3/5][50/1583] Loss_D: 0.5322 Loss_G: 2.2993 D(x): 0.7599 D(G(z)): 0.1975 / 0.1282
[3/5][100/1583] Loss_D: 0.7477 Loss_G: 3.9589 D(x): 0.8852 D(G(z)): 0.4204 / 0.0278
[3/5][150/1583] Loss_D: 1.4381 Loss_G: 4.7204 D(x): 0.9319 D(G(z)): 0.6738 / 0.0183
[3/5][200/1583] Loss_D: 0.6804 Loss_G: 1.0219 D(x): 0.6337 D(G(z)): 0.1416 / 0.4087
[3/5][250/1583] Loss_D: 0.5189 Loss_G: 3.7633 D(x): 0.8552 D(G(z)): 0.2801 / 0.0320
[3/5][300/1583] Loss_D: 0.7550 Loss_G: 1.3277 D(x): 0.6221 D(G(z)): 0.1923 / 0.3197
[3/5][350/1583] Loss_D: 1.3781 Loss_G: 6.0585 D(x): 0.9434 D(G(z)): 0.6707 / 0.0036
[3/5][400/1583] Loss_D: 0.6116 Loss_G: 1.6963 D(x): 0.6299 D(G(z)): 0.0770 / 0.2193
[3/5][450/1583] Loss_D: 1.7509 Loss_G: 4.4759 D(x): 0.8980 D(G(z)): 0.7466 / 0.0203
[3/5][500/1583] Loss_D: 0.5340 Loss_G: 2.3203 D(x): 0.7557 D(G(z)): 0.1909 / 0.1204
[3/5][550/1583] Loss_D: 0.6931 Loss_G: 1.1720 D(x): 0.6093 D(G(z)): 0.1163 / 0.3619
[3/5][600/1583] Loss_D: 1.2396 Loss_G: 0.2693 D(x): 0.3594 D(G(z)): 0.0420 / 0.7837
[3/5][650/1583] Loss_D: 0.8060 Loss_G: 1.6917 D(x): 0.5299 D(G(z)): 0.0686 / 0.2424
[3/5][700/1583] Loss_D: 0.7867 Loss_G: 2.1144 D(x): 0.5707 D(G(z)): 0.1115 / 0.1843
[3/5][750/1583] Loss_D: 0.8852 Loss_G: 4.0520 D(x): 0.8842 D(G(z)): 0.4771 / 0.0270
[3/5][800/1583] Loss_D: 0.5382 Loss_G: 2.3076 D(x): 0.7495 D(G(z)): 0.1871 / 0.1261
[3/5][850/1583] Loss_D: 0.7593 Loss_G: 3.7961 D(x): 0.8932 D(G(z)): 0.4332 / 0.0303
[3/5][900/1583] Loss_D: 0.5277 Loss_G: 1.7846 D(x): 0.6999 D(G(z)): 0.1232 / 0.1977
[3/5][950/1583] Loss_D: 2.1565 Loss_G: 4.6891 D(x): 0.9700 D(G(z)): 0.8105 / 0.0164
[3/5][1000/1583] Loss_D: 0.6359 Loss_G: 1.3277 D(x): 0.6502 D(G(z)): 0.1370 / 0.3137
[3/5][1050/1583] Loss_D: 0.6228 Loss_G: 1.8498 D(x): 0.6750 D(G(z)): 0.1526 / 0.1908
[3/5][1100/1583] Loss_D: 0.6398 Loss_G: 2.0129 D(x): 0.6862 D(G(z)): 0.1639 / 0.1785
[3/5][1150/1583] Loss_D: 0.6838 Loss_G: 1.4062 D(x): 0.6205 D(G(z)): 0.1318 / 0.2925
[3/5][1200/1583] Loss_D: 0.6225 Loss_G: 1.7072 D(x): 0.6964 D(G(z)): 0.1828 / 0.2244
[3/5][1250/1583] Loss_D: 0.4855 Loss_G: 2.3015 D(x): 0.8363 D(G(z)): 0.2301 / 0.1308
[3/5][1300/1583] Loss_D: 0.6296 Loss_G: 1.8879 D(x): 0.6552 D(G(z)): 0.1276 / 0.1858
[3/5][1350/1583] Loss_D: 0.5821 Loss_G: 1.8116 D(x): 0.7394 D(G(z)): 0.2052 / 0.1998
[3/5][1400/1583] Loss_D: 0.6488 Loss_G: 1.9567 D(x): 0.6255 D(G(z)): 0.0780 / 0.1852
[3/5][1450/1583] Loss_D: 0.6645 Loss_G: 2.4629 D(x): 0.7695 D(G(z)): 0.2887 / 0.1058
[3/5][1500/1583] Loss_D: 0.8898 Loss_G: 3.3197 D(x): 0.8605 D(G(z)): 0.4628 / 0.0514
[3/5][1550/1583] Loss_D: 0.6817 Loss_G: 3.5122 D(x): 0.9073 D(G(z)): 0.4094 / 0.0384
[4/5][0/1583] Loss_D: 0.7299 Loss_G: 3.9179 D(x): 0.9017 D(G(z)): 0.4122 / 0.0306
[4/5][50/1583] Loss_D: 0.5992 Loss_G: 1.9985 D(x): 0.6819 D(G(z)): 0.1414 / 0.1758
[4/5][100/1583] Loss_D: 1.0801 Loss_G: 0.6717 D(x): 0.4149 D(G(z)): 0.0363 / 0.5520
[4/5][150/1583] Loss_D: 0.7469 Loss_G: 1.6936 D(x): 0.6492 D(G(z)): 0.2041 / 0.2196
[4/5][200/1583] Loss_D: 0.5540 Loss_G: 2.6296 D(x): 0.7478 D(G(z)): 0.1898 / 0.0971
[4/5][250/1583] Loss_D: 0.5752 Loss_G: 1.4395 D(x): 0.6465 D(G(z)): 0.0827 / 0.2817
[4/5][300/1583] Loss_D: 0.5174 Loss_G: 3.0735 D(x): 0.8221 D(G(z)): 0.2502 / 0.0598
[4/5][350/1583] Loss_D: 0.9973 Loss_G: 4.7827 D(x): 0.9424 D(G(z)): 0.5482 / 0.0121
[4/5][400/1583] Loss_D: 0.5409 Loss_G: 2.8585 D(x): 0.7811 D(G(z)): 0.2257 / 0.0776
[4/5][450/1583] Loss_D: 0.5972 Loss_G: 2.2983 D(x): 0.7635 D(G(z)): 0.2497 / 0.1250
[4/5][500/1583] Loss_D: 0.6852 Loss_G: 1.8842 D(x): 0.6208 D(G(z)): 0.1004 / 0.1874
[4/5][550/1583] Loss_D: 0.9044 Loss_G: 1.3161 D(x): 0.4830 D(G(z)): 0.0430 / 0.3182
[4/5][600/1583] Loss_D: 0.5294 Loss_G: 2.0331 D(x): 0.7264 D(G(z)): 0.1489 / 0.1669
[4/5][650/1583] Loss_D: 0.5405 Loss_G: 2.2400 D(x): 0.8032 D(G(z)): 0.2310 / 0.1367
[4/5][700/1583] Loss_D: 1.3106 Loss_G: 0.4123 D(x): 0.3830 D(G(z)): 0.1451 / 0.6984
[4/5][750/1583] Loss_D: 0.4968 Loss_G: 2.3170 D(x): 0.7815 D(G(z)): 0.1904 / 0.1230
[4/5][800/1583] Loss_D: 0.5508 Loss_G: 3.4631 D(x): 0.9049 D(G(z)): 0.3220 / 0.0428
[4/5][850/1583] Loss_D: 0.8076 Loss_G: 3.8114 D(x): 0.9072 D(G(z)): 0.4515 / 0.0310
[4/5][900/1583] Loss_D: 0.6859 Loss_G: 3.4128 D(x): 0.8569 D(G(z)): 0.3616 / 0.0456
[4/5][950/1583] Loss_D: 0.6152 Loss_G: 2.6583 D(x): 0.8197 D(G(z)): 0.3042 / 0.0948
[4/5][1000/1583] Loss_D: 0.3937 Loss_G: 2.7027 D(x): 0.8652 D(G(z)): 0.2028 / 0.0875
[4/5][1050/1583] Loss_D: 0.8435 Loss_G: 3.4371 D(x): 0.9160 D(G(z)): 0.4766 / 0.0451
[4/5][1100/1583] Loss_D: 2.2384 Loss_G: 0.3049 D(x): 0.1742 D(G(z)): 0.0488 / 0.7609
[4/5][1150/1583] Loss_D: 0.5297 Loss_G: 1.9694 D(x): 0.7004 D(G(z)): 0.1160 / 0.1803
[4/5][1200/1583] Loss_D: 0.6122 Loss_G: 3.6113 D(x): 0.9047 D(G(z)): 0.3521 / 0.0414
[4/5][1250/1583] Loss_D: 0.4745 Loss_G: 1.9537 D(x): 0.7333 D(G(z)): 0.1198 / 0.1702
[4/5][1300/1583] Loss_D: 0.4021 Loss_G: 3.6127 D(x): 0.9496 D(G(z)): 0.2717 / 0.0365
[4/5][1350/1583] Loss_D: 0.5723 Loss_G: 2.1205 D(x): 0.7550 D(G(z)): 0.2065 / 0.1498
[4/5][1400/1583] Loss_D: 0.5227 Loss_G: 2.0225 D(x): 0.7475 D(G(z)): 0.1679 / 0.1611
[4/5][1450/1583] Loss_D: 0.4999 Loss_G: 1.6748 D(x): 0.7991 D(G(z)): 0.2109 / 0.2243
[4/5][1500/1583] Loss_D: 1.0834 Loss_G: 1.1147 D(x): 0.4031 D(G(z)): 0.0301 / 0.3940
[4/5][1550/1583] Loss_D: 0.5182 Loss_G: 2.7788 D(x): 0.8048 D(G(z)): 0.2238 / 0.0777
Results¶
Finally, lets check out how we did. Here, we will look at three different results. First, we will see how D and G’s losses changed during training. Second, we will visualize G’s output on the fixed_noise batch for every epoch. And third, we will look at a batch of real data next to a batch of fake data from G.
Loss versus training iteration
Below is a plot of D & G’s losses versus training iterations.

Visualization of G’s progression
Remember how we saved the generator’s output on the fixed_noise batch after every epoch of training. Now, we can visualize the training progression of G with an animation. Press the play button to start the animation.
fig = plt.figure(figsize=(8,8))
plt.axis("off")
ims = [[plt.imshow(np.transpose(i,(1,2,0)), animated=True)] for i in img_list]
ani = animation.ArtistAnimation(fig, ims, interval=1000, repeat_delay=1000, blit=True)
HTML(ani.to_jshtml())
